home *** CD-ROM | disk | FTP | other *** search
/ Chip 1996 September / CHIP Eylül 1996.iso / utils / povray / povmnf.sea / POVRAY / POV-Ray.rsrc / TEXT_300_area_light.txt < prev    next >
Text File  |  1994-02-09  |  453b  |  13 lines

  1. // An extended area light (soft shadows)
  2. // WARNING: This can significantly slow down rendering times!
  3. light_source
  4. {
  5.   0*x // light's position (translated below)
  6.   color red 1.0  green 1.0  blue 1.0  // light's color
  7.   // <widthVector> <heightVector> nLightsWide mLightsHigh
  8.   area_light <8, 0, 0> <0, 8, 0> 4, 4
  9.   adaptive 0    // or 1 or 2 
  10.   jitter        // adds random softening of light
  11.   translate <40, 80, -40>   // <x y z> position of light
  12. }
  13.